home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / FORK.S < prev    next >
Text File  |  1994-05-27  |  137b  |  11 lines

  1. /    int fork ( void )
  2.  
  3.     .globl    _fork
  4. _fork:
  5.     movw    $0x7f1c, %ax
  6.         int     $0x21
  7.     jecxz    1f
  8.     movl    %ecx, _errno
  9. 1:
  10.         ret
  11.